home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Include / StatusBarConstants.au3 < prev    next >
Text File  |  2006-07-15  |  2KB  |  56 lines

  1. #include-once
  2.  
  3. ; ------------------------------------------------------------------------------
  4. ;
  5. ; AutoIt Version: 3.1.1 (beta)
  6. ; Language:       English
  7. ; Description:    StatusBar Constants.
  8. ;
  9. ; ------------------------------------------------------------------------------
  10.  
  11. Global Const $CCS_TOP = 0x1
  12. Global Const $CCS_NOMOVEY = 0x2
  13. Global Const $CCS_BOTTOM = 0x3
  14. Global Const $CCS_NORESIZE = 0x4
  15. Global Const $CCS_NOPARENTALIGN = 0x8
  16. Global Const $CCS_NOHILITE = 0x10
  17. Global Const $CCS_ADJUSTABLE = 0x20
  18. Global Const $CCS_NODIVIDER = 0x40
  19. ;=== Status Bar Styles
  20. Global Const $SBARS_SIZEGRIP = 0x100
  21. Global Const $SBT_TOOLTIPS = 0x800
  22. ;=== uFlags
  23. Global Const $SBT_SUNKEN = 0x0;Default
  24. Global Const $SBT_NOBORDERS = 0x100;The text is drawn without borders.
  25. Global Const $SBT_POPOUT = 0x200; The text is drawn with a border to appear higher than the plane of the window.
  26. Global Const $SBT_RTLREADING = 0x400;SB_SETTEXT, SB_SETTEXT, SB_GETTEXTLENGTH flags only: Displays text using right-to-left reading order on Hebrew or Arabic systems.
  27. Global Const $SBT_OWNERDRAW = 0x1000;The text is drawn by the parent window.
  28. ;=== Messages to send to Statusbar
  29. Global Const $SB_GETPARTS = 0x406
  30. Global Const $SB_GETBORDERS = (0x400 + 7)
  31. Global Const $SB_GETICON = (0x400 + 20)
  32. Global Const $SB_GETRECT = (0x400 + 10)
  33. Global Const $SB_GETTEXT = 0x402
  34. Global Const $SB_GETTEXTLENGTH = 0x403
  35. Global Const $SB_GETTIPTEXT = (0x400 + 18)
  36.  
  37. Global Const $SB_GETUNICODEFORMAT = (0x2000 + 6)
  38.  
  39. Global Const $SB_SETBKCOLOR = (0x2000 + 1)
  40. Global Const $SB_SETICON = (0x400 + 15)
  41. Global Const $SB_SETMINHEIGHT = 0x408
  42. Global Const $SB_SETPARTS = 0x404
  43. Global Const $SB_SETTEXT = 0x401
  44. Global Const $SB_SETTIPTEXT = (0x400 + 16)
  45. Global Const $SB_SETUNICODEFORMAT = (0x2000 + 5)
  46.  
  47. Global Const $SB_SIMPLE = 0x409
  48. Global Const $SB_ISSIMPLE = 0x40E
  49.  
  50. ; scroll constants
  51. Global Const $SB_LINEDOWN = 1
  52. Global Const $SB_LINEUP = 0
  53. Global Const $SB_PAGEDOWN = 3
  54. Global Const $SB_PAGEUP = 2
  55. Global Const $SB_SCROLLCARET = 4
  56.